home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 June / SGI Freeware 1998 June.iso / dist / fw_ATxgopher.idb / usr / freeware / src / xgopher.1.3 / markList.h.z / markList.h
C/C++ Source or Header  |  1998-01-21  |  2KB  |  62 lines

  1. /* markList.h
  2.    header file for markList.c */
  3.  
  4.      /*---------------------------------------------------------------*/
  5.      /* Xgopher        version 1.3     08 April 1993                  */
  6.      /*                version 1.2     20 November 1992               */
  7.      /*                version 1.1     20 April 1992                  */
  8.      /*                version 1.0     04 March 1992                  */
  9.      /* X window system client for the University of Minnesota        */
  10.      /*                                Internet Gopher System.        */
  11.      /* Allan Tuchman, University of Illinois at Urbana-Champaign     */
  12.      /*                Computing and Communications Services Office   */
  13.      /* Copyright 1992, 1993 by                                       */
  14.      /*           the Board of Trustees of the University of Illinois */
  15.      /* Permission is granted to freely copy and redistribute this    */
  16.      /* software with the copyright notice intact.                    */
  17.      /*---------------------------------------------------------------*/
  18.  
  19.  
  20. #ifndef MARKLIST_H
  21. #define MARKLIST_H
  22.  
  23. #include "gopher.h"
  24.  
  25. void        markItem(
  26. #ifdef PROTO
  27.             gopherItemP    /* gi */
  28. #endif
  29.         );
  30.  
  31. gopherItemP    unmarkItem(
  32. #ifdef PROTO
  33.             gopherItemP    /* gi */
  34. #endif
  35.         );
  36.  
  37. void        unmarkItemN(
  38. #ifdef PROTO
  39.             int        /* n */
  40. #endif
  41.         );
  42.  
  43. void        unmarkAllItems(
  44.         );
  45.  
  46. gopherItemP    getMarkN(
  47. #ifdef PROTO
  48.             int        /* n */
  49. #endif
  50.         );
  51.  
  52. BOOLEAN        anyMarks(
  53.         );
  54.  
  55. gopherItemP    firstMark(
  56.         );
  57.  
  58. int        markListLength(
  59.         );
  60.  
  61. #endif /* MARKLIST_H */
  62.